Disabling Number Sharepoint Fields

@Gabegia,

As you are using forms for SharePoint, you need to add your code under spRendered event handler, like this:

fd.spRendered(function(vue) {
    //Disable request total and status field
    fd.field('Status').disabled = true;
    fd.field('RequestAmount').disabled = true;
});

Please try it out and let me know.

Thank you! I'm glad you are enjoying the new appearance of tables.

I wrote out a full response about how it wasn't working... then as soon as I posted it, it started disabling.

Thanks again for the help!

Gabe

1 Like