Questionnumber
)RadGrid1.Allowpaging = false;
RadGrid1.ReBind();
foreach
(GridDataItem item
in
grid1.Items)
{
RadioButton btn = (RadioButton)item.FindControl(
"radiobutton1"
);
string
value = item.GetDataKeyValue(
"Questionnumber
"
).ToString();
if( value == Questionnumber
)RadGrid1.MasterTableView.CurrentPageIndex = 3;
// see ,here is also one problem : I write it 3 but it should be //like that which radiobutton is selected I need to find the current page Index of that page where the selected radiobutton row is exist .Questionnumber
) is true(int)(RadGrid1.MasterTableView.
Items.Count / 20 ), RadGrid1.Allowpaging = true;
RadGrid1
.PageSize = 20; RadGrid1.MastertableView.ReBind();
// if I write this then My selected Radio Button not selected and if I don't write then paging Hello
I have a radEditor for which I need to provide relative paths for its various CSS files.
For example:
<CssFiles>
<trk:EditorCssFile Value="stylesheets/EditorContentArea.css" />
</CssFiles>
where the 'stylesheets' folder would be a subfolder in the same folder as the markup and code files.
But the relative path doesn't work, whereas using an absolute path is successful, e.g., this path does find the CSS file in question:
<CssFiles>
<trk:EditorCssFile Value="~/[path_to_my_stylesheets]/EditorContentArea.css"
</CssFiles>
What could be occurring here? Is the a behaviour that can be configured and changed somehow to enable the use of a relative path. Possibly at the time of processing, the relative path is being determined from a different location to that of the markup file?
If anyone can point me in the right direction it would be very greatly appreciated!
Regards