Hello,
I have a problem with radwindow control (using IE8).
I'm using scriptmanager and updatepanel controls in my application (please view the attached sample in http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=400607).
The webpage is saving history points with no problems, until I show the radwindow control. If I open the radwindow then the history points are deleted.
Note: I checked this issue in IE7, it is working with no problems. The problem is in IE8.
I checked with microsoft support this issue. But they told me that it is related some how to the radwindow itself. So plaese, I need your help.
Please look at the following situations:
Good situation:
1) click "Main Attractions" checkbox
2) click "Shopping & Fashion" checkbox
3) Click "Tel Aviv" Linkbutton.
4) Click "Netanya" Linkbutton.
5) Click "Eilat" Linkbutton.
6) Cick the browser back button few times (THIS SHOWS YOU THAT THE HISTORY POINTS ARE SAVED AND USED)
Bad Situation 1:
1) click "Main Attractions" checkbox
2) click "Shopping & Fashion" checkbox
3) Click "Tel Aviv" Linkbutton.
4) Click "Netanya" Linkbutton.
5) Click "Eilat" Linkbutton.
6) Click "Full Screen" button in order to open the map in full screen mode (Radwindow).
7) Cick the browser back button few times (THIS SHOWS YOU THAT THE HISTORY POINTS ARE DELETED)
Bad Situation 2:
1) click "Main Attractions" checkbox
2) click "Shopping & Fashion" checkbox
3) Click "Tel Aviv" Linkbutton.
4) Click "Netanya" Linkbutton.
5) Click "Eilat" Linkbutton.
6) Click the "About" linkbutton and then click close.
7) Cick the browser back button few times (THIS SHOWS YOU THAT THE HISTORY POINTS ARE DELETED)
So, I need to enable the user to go back and forward using the browser buttons even after opeining the radwindow.
Please, I need your help in order to solve this issue.
This issue make problem for me with my client.
It is appricited to send me the modified code.
Regards,
Bader
UseStaticHeaders
is working very fine, but when I set the direction of the grid to RTL it gave me an error in graphics because the empty part (above the scroller) in the header is still be drawing in the right side, which causes a displacement in the grid columns.
Could you please help in?
<
telerik:RadCodeBlock
ID
=
"RadCodeBlock"
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function InitiateAsyncRequestByCombo(sender, eventArgs) {
var ajaxManager = $find("<%= RadAjaxManager.GetCurrent(this.Page).ClientID %>");
ajaxManager.ajaxRequestWithTarget("<%= FilterRadComboBox.UniqueID %>", sender.get_selectedItem().get_value());
return false;
}
</
script
>
</
telerik:RadCodeBlock
>
<Selecting AllowRowSelect="true" />
</ClientSettings>
Now when I select any row in the Grid. There will a check box in the Grid ItemTemplate. that should be checked
and unchecked. please help me on this issue.
function SetProvisions(RadListBoxArray) {
var RadListBoxCount = RadListBoxArray.length;
var i = 0;
var ProvisionListBox = $find("<%= uxProvisions.ClientID %>");
for (i = 0; i < RadListBoxCount; i++) {
var RadListBox = RadListBoxArray[i];
var RadListBoxCheckedItems = RadListBox.get_checkedItems();
ProvisionListBox.insertItems(RadListBoxCheckedItems); <<<<Getting error here
}
ProvisionListBox.commitChanges();
}
Getting error stating that "Array of RadListBox items or Telerik.Web.UI.RadListBoxItem collection should be passed."
hi,
I am loading a custom ToolsFile.xml into Radeditor with
"LoadToolsFile(dom)"
.
after a postback some tools like colorselection do no longer work, because
of a javascript error in the Editor script.
now i found out that reloading the tools-xml file on every request fixes the issue, but in my
understanding, the editor should be recreated from viewstate after postback?
regards,
peter
LinkButton btn = (LinkButton)e.Item.FindControl(
"PhotoLinkButton"
);
string
id = DataBinder.Eval(e.Item,
"PhotoID"
).ToString();
btn.Attributes.Add(
"onclick"
,
string
.Format(
"viewImage({0}); return false;"
, id));