Giter VIP home page Giter VIP logo

demos's People

Contributors

patrick-rodgers avatar waldekmastykarz avatar

Stargazers

 avatar  avatar

demos's Issues

PreSaveAction with pnp.js

Hello. First Sorry that I am writing here but pnpjs is closed (Why?) and I don't know where to write my question.
I have maybe simple task but I am not able to solve this problem....
I am rewriting PreSaveAction in forms. In this action I want to do some code by pnp...
'function getSetNumber() {

 $pnp.sp.web.lists.getByTitle("List").items.top(1).filter("Title eq '" + actualYear + "'").get().then(function (data) {
    if (data.length > 0) {
        var itemId = parseInt(data[0].pcislo) + 1;
        $pnp.sp.web.lists.getByTitle("List").items.getById(data[0].Id).update({
            pcislo: itemId,
        }).then(function (result) {

console.log(result);
return true;
}).catch(function (err) {
alert(err);
});
}
else {
$pnp.sp.web.lists.getByTitle("List").items.add({
Title: actualYear.toString(),
pcislo: "1"
}).then(function (result) {
console.log(result);
return true;
});
}
});
}'

and then this

function PreSaveAction() { getSetNumber() }

So I need that after I make some updated by pnp after that presaveaction will return true and form can be submitted.... That means make asynchronous call with pnp functions....
I have tested everything for example when function and promise and so on...But nothing helps me with this.... Thank you very much for help...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.