I use 'RadWindowManager' and 'radopen' javadcript function to open and brows extra pages.
How can I add [sandbox="allow-forms allow-scripts"] to the iframe of the radwindow?
I currently have a RadGrid with two detail tables and few other columns on the grid. The first column on the Grid has an ExpandColumn to expand the detail tables by default. This comes default because there is a detail table. The second column on the grid is a GridClientSelectColumn. I want to have two ExpandColumns at the beginning and then the GridClientSelectColumn. When I click on the first ExpandColumn, the first detail table needs to be expanded. When I click on the second ExpandColumn, the second detail table needs to be expanded. I tried to add two "telerik:GridExpandColumn" before the checkbox but they are being added after the checkbox. Then I tried to hide the default checkbox as I don't those but then the second ExpandColumn moves to the first column.
Can anyone provide code that displays it in the correct order and displays the appropriate detail table while clicking on an ExpandColumn?
asp:Content radA:RadAjaxPanel asp:DropDownList asp:DropDownList asp:DropDownList
...
When the selected index changes on DDL 1 the values in DDL 2 should also change but I get a syntax error in auto generated javascript that prevents asp events from happening.
The error is that there is a ' in stead of ' aroundctl00_MainContentPlaceHolder_RadAjaxPanel2
Here is the auto generated javascript: onchange="javascript:setTimeout('AjaxNS.AR(\'ctl00$MainContentPlaceHolder$m_ddlFyrirtaek\',\'\',
'ctl00_MainContentPlaceHolder_RadAjaxPanel2', event)', 0)"
We are using the rad grid to display the data and we have export to PDF functionality which export the rad grid data to the PDF file. Everything works fine except one which is star image export to PDF.
When the rad grid is exported to PDF which has star images but in pdf file this star image looks like a small dot. please let us know the resolution of this problem.
We have ASP.NET application that consists of master and content page. We load dynamically (using LoadControl method) our user control that has Telerik's grid. There can be 1 master and more detail grids. Detail grids are in separate rad tabs.
How can we get the reference to right grid from master page in case we selected particular tab where grid is placed?
My grid has a mastertable and 1 detail table.
The master table has heirachyLoadMode="ServerBind"
The detailtable columns has ItemTemplates containing a RadNumericTextBox controls (1 per column).
The master table values are essentially an aggregation of the detail rows. I have RadNumericTextBox ClientEvents-OnValueChanged javascript that aggregates the detail values and updates the the value in the master row.
That all works. My problem is when a new row is expanded, a postback occurs and I loose the grid values I calculated and set via javascript. How do I persist those values? The values in the RadNumericTextBox controls are persisted so EnableViewState can be eliminated.
This is how I update the master rows:
masterView.getCellByColumnUniqueName(masterView.get_dataItems()[masterRowIndex], "MyColName").innerHTML = parseInt(detailTotal / detailRowCount);
How do I persist that change during postback? Am I not setting the value correctly? Do I have add postback code to copy HTML values to a saved datasource then rebind?
I cannot use heirachyLoadMode="Client" because loading takes way too long.
I am using ItemTemplates instead of EditTemplates because I don't want the user to have to click edit on each detail row they want to edit; that would slow them down a lot.