designer
3 TopicsLoad predefined data from columns and update field with possible selection with Javascript
I am struggling with piece of code. I am working on SharePoint 2013 and I am trying to set 2 fields fixed when creating a new item in list. All 3 fields are lookup columns, but the red highlighted fields I want to set as fixed and the yellow highlighted field is conditioned by the field Vyberova_Skupina_Sluzba Also Vyberova_Skupina_Sluzba is conditioned by the field Vyber_Oblast I used the part of the code below, the fields are fixed Vyber_Oblast and Vyberova_Skupina_Sluzba but third column is not updated. function nastavSluzba(){ $('#Produktova_Skupina_Sluzba').find('select').val('Hypotekárne úvery'); $('#Vyber_Oblasti').find('select').val('Úverové produkty pre FO') $('#tableNapoveda').remove(); $("#Vyber_Oblasti").find('select').attr("disabled", true); $("#Produktova_Skupina_Sluzba").find('select').attr("disabled", true); $("#Vyber_Oblasti").find('select').css({"background-color": "white","color": "black"}); $("#Produktova_Skupina_Sluzba").find('select').css({"background-color": "white","color": "black"}); var allOptions = document.querySelectorAll("[title=Vyber_Oblasti] option"); [].some.call(allOptions, function(option) { if (option.innerHTML == "Úverové produkty pre FO") { option.selected = "Úverové produkty pre FO"; return true; } }); var allOption = document.querySelectorAll("[title=Produktova_Skupina_Sluzba] option"); [].some.call(allOption, function(option) { if (option.innerHTML == "Hypotekárne úvery") { option.selected = "Hypotekárne úvery"; return true; } }); Can you help me make sure that the third field is loaded automatically and that the user can select an option that falls under Produktova_Skupina_Sluzba ?672Views0likes0CommentsSharePoint Designer Cannot open list with 5000 items
Hi, I'm not able open a SPO list in the SharePoint designer that have more then 15000 items, none of the views running into 5000 threshold issue. I need to modify list forms in SharePoint Designer. In the designer I tried to get to the list from List and Libraries and from All Files->List->Custom_List but none of them worked and I'm keep getting "The attempted operation is prohibited because it exceeds the list view threshold enforced by admin". Please suggest? Thanks, -Sal1.7KViews1like4CommentsSharePoint Top Level Site Admin of Subsite
All, My company Sharepoint Site has an extremely basic Top Level Page that the administrator does not want to touch for now. However, I'm trying to promote the use of SharePoint Designer at a sublevel page only, before I suggest we spread it across the whole company and its subdepartments, so my question is, is it possible just to change the look/theme of a subsite and leave the top level site alone? I currently only have USER permission rights on the page and looks like the SharePoint Designer has bee disabled at the moment, so I am unable to get in there and have a try. Any help or useful suggestion would be appreciated, Kindest Regards,985Views0likes2Comments