Hi,
When I change rad window properties its changing Confirm popup/rad alert not RadWindow after clicking edit/add new button from Rad Grid
Thank You
Bala
When I change rad window properties its changing Confirm popup/rad alert not RadWindow after clicking edit/add new button from Rad Grid
Thank You
Bala
6 Answers, 1 is accepted
0
Bala
Top achievements
Rank 1
answered on 07 Mar 2013, 11:02 PM
Hi ,
I am getting blank page When I am adding
Thank You
Bala
I am getting blank page When I am adding
<telerik
:RadWindowManager runat="server" id="RadWindowManager1" skin"Test1" > or
telerik
:RadWindow runat="server" id="RadWindow1" skin"Test1" >
Thank You
Bala
0
Shinu
Top achievements
Rank 2
answered on 08 Mar 2013, 04:17 AM
Hi,
I am not quite sure about your requirement. I suppose you want to show RadWindow for inserting records on clicking AddNewRecord button. You can try the approach mentioned in the following demo.
Grid - Window Editing
Thanks,
Shinu
I am not quite sure about your requirement. I suppose you want to show RadWindow for inserting records on clicking AddNewRecord button. You can try the approach mentioned in the following demo.
Grid - Window Editing
Thanks,
Shinu
0
Bala
Top achievements
Rank 1
answered on 08 Mar 2013, 09:43 AM
Hi Shinu,
1) please check my first post attachment , I am able to open radwindow from code behind but I could not customize radwindow when I click
Edit or add new row
2). But I am able to customize my rad alert and rad confirm by adding style sheet but I couldn't customize.
Thank you
bala
1) please check my first post attachment , I am able to open radwindow from code behind but I could not customize radwindow when I click
Edit or add new row
2). But I am able to customize my rad alert and rad confirm by adding style sheet but I couldn't customize.
Thank you
bala
0
Shinu
Top achievements
Rank 2
answered on 11 Mar 2013, 04:53 AM
Hi,
I suppose you want to add custom the skin for RadWindow. Check the following help documentation which explains more about this.
RadWindow CSS Classes and Their Use
Thanks,
Shinu
I suppose you want to add custom the skin for RadWindow. Check the following help documentation which explains more about this.
RadWindow CSS Classes and Their Use
Thanks,
Shinu
0
Bala
Top achievements
Rank 1
answered on 12 Mar 2013, 10:39 PM
Hi,
I also checked http://www.telerik.com/help/aspnet-ajax/skinmanager.html
and when I am applying the below code under page load its got error.
Telerik.Web.UI.RadSkinManager.GetCurrent(Me.Page).ApplySkin(RadMenu1, "WebBlue") 'user control
Its not working. I can able to produce Radwinodw stylesheet without Rad Grid but I couldn't add skin when I am trying add from Radgrid to radwinodw. See examples
Step1) I already have radwinodw stylesheet
link rel="stylesheet" type="text/css" href='<% =ResolveUrl("~/Styles/Telerik/Window.Skin20.css") %>' media="screen, projection" /> < telerik:RadWindowManager runat="server" ID="rwm1" EnableEmbeddedSkins="False" Skin="Skin20"> </telerik:RadWindowManager> <telerik:RadWindow ID="RadWindow1" VisibleStatusbar="true" Overlay="true" Behaviors="Close" Behavior="Close" Height="420px" Width="575px" Modal="true" runat="server" Title="Title"> </telerik:RadWindow> <telerik:RadGrid ID="radGrid1" runat="server" GridLines="None" AllowPaging="True" AllowSorting="True" EnableEmbeddedSkins="False" Skin="Skin20" PageSize="20" AllowFilteringByColumn="True" AllowMultiRowSelection="true" AutoGenerateColumns="true" PagerStyle- AllowAutomaticInserts="False" OnUpdateCommand="Update" OnItemCreated="ItemCreated" OnDeleteCommand="Delete" OnInsertCommand="Insert" MasterTableView-EditFormSettings-EditColumn-ButtonType="ImageButton" MasterTableView-EditFormSettings-EditColumn-CancelImageUrl="../Test/Cancel.png" MasterTableView-EditFormSettings-EditColumn-UpdateImageUrl="../Test/Save.png" MasterTableView-EditFormSettings-EditColumn-InsertImageUrl="../Test/Save.png" AllowMultiRowEdit="false" > < MasterTableView EditMode="PopUp" CommandItemDisplay="Bottom" CommandItemSettings-ShowRefreshButton="False" CommandItemSettings-ShowAddNewRecordButton="True" CommandItemSettings-AddNewRecordText="Add a Row" EnableColumnsViewState="true" DataKeyNames="MetadataRowId" CommandItemSettings-AddNewRecordImageUrl="../Test/add.png" > <NoRecordsTemplate> <div style="color:Red">No items found.</div> </NoRecordsTemplate> <Columns> <telerik:GridEditCommandColumn HeaderStyle-Width="35px" ItemStyle-Width="35px" ItemStyle-HorizontalAlign="Center" UniqueName="EditCommandColumn" ButtonType="ImageButton" EditImageUrl="../Test/edit.png"></telerik:GridEditCommandColumn> <telerik:GridButtonColumn HeaderStyle-Width="35px" ItemStyle-Width="35px" ItemStyle-HorizontalAlign="Center" CommandName="Delete" Text="Delete" UniqueName="DeleteColumn" ButtonType="ImageButton" ImageUrl="../Test/delete.png"></telerik:GridButtonColumn> </Columns> </MasterTableView> </telerik:radgrid> 0
Bala
Top achievements
Rank 1
answered on 13 Mar 2013, 02:38 PM