In order to get familiar in a fast and pretty straight-forward manner with RadSplitter for ASP.NET AJAX, I suggest you visit the online resources linked below:
Of course, you can browse the public forum as well in order to find a specific information/code sample concerning an aspect of the RadSplitter object model/ features. There are numerous threads which can get you started/assist you through the development process.
If you think you have an interesting project implementation with the RadSplitter that would benefit the community, we will gladly reward you for posting it in the Code library of RadSplitter. So feel free to share your projects for others to learn more about all the amazing things RadSplitter can do.
Finally, we will appreciate your feedback on the structure/content of the online resources - our goal is to continue enriching them, thus facilitating our customers even more.
In order to get familiar in a fast and pretty straight-forward manner with RadToolTip for ASP.NET AJAX, I suggest you visit the online resources linked below:
Of course, you can browse the public forum as well in order to find a specific information/code sample concerning an aspect of the RadToolTip object model/ features. There are numerous threads which can get you started/assist you through the development process.
If you think you have an interesting project implementation with the RadToolTip that would benefit the community, we will gladly reward you for posting it in the Code library of RadToolTip. So feel free to share your projects for others to learn more about all the amazing things RadToolTip can do.
Finally, we will appreciate your feedback on the structure/content of the online resources - our goal is to continue enriching them, thus facilitating our customers even more.
In order to get familiar in a fast and pretty straight-forward manner with RadWindow for ASP.NET AJAX, I suggest you visit the online resources linked below:
Of course, you can browse the public forum as well in order to find a specific information/code sample concerning an aspect of the RadWindow object model/ features. There are numerous threads which can get you started/assist you through the development process.
If you think you have an interesting project implementation with the RadWindow that would benefit the community, we will gladly reward you for posting it in the Code library of RadWindow. So feel free to share your projects for others to learn more about all the amazing things RadWindow can do.
Finally, we will appreciate your feedback on the structure/content of the online resources - our goal is to continue enriching them, thus facilitating our customers even more.
int value = Convert.ToInt32(e.CommandArgument);
<
telerik:RadGrid
ID
=
"gvKontakti"
runat
=
"server"
AllowPaging
=
"True"
AllowSorting
=
"True"
CellSpacing
=
"0"
GridLines
=
"None"
DataKeyNames
=
"idKontakt"
AutoGenerateColumns
=
"false"
OnDeleteCommand
=
"gvKontakti_DeleteCommand"
OnEditCommand
=
"gvKontakti_EditCommand"
OnInsertCommand
=
"gvKontakti_InsertCommand"
>
<
MasterTableView
CommandItemDisplay
=
"TopAndBottom"
>
<
Columns
>
<
telerik:GridEditCommandColumn
UniqueName
=
"EditCommandColumn"
>
</
telerik:GridEditCommandColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Naziv"
HeaderText
=
"Naziv"
DataField
=
"Naziv"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Funkcija"
HeaderText
=
"Funkcija"
DataField
=
"Funkcija"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Tel1"
HeaderText
=
"Telefon 1"
DataField
=
"Tel1"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Tel2"
HeaderText
=
"Telefon 2"
DataField
=
"Tel2"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Mob1"
HeaderText
=
"Mobitel 1"
DataField
=
"Mob1"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Mob2"
HeaderText
=
"Mobitel 2"
DataField
=
"Mob2"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Email1"
HeaderText
=
"E-mail 1"
DataField
=
"E-mail1"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Email2"
HeaderText
=
"E-mail 2"
DataField
=
"E-mail2"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Fax"
HeaderText
=
"Fax"
DataField
=
"Fax"
>
</
telerik:GridBoundColumn
>
</
Columns
>
<
EditFormSettings
EditFormType
=
"Template"
>
<
EditColumn
UniqueName
=
"EditColumn"
>
</
EditColumn
>
<
FormTemplate
>
<
table
>
<
tr
>
<
td
>
Ime:
</
td
>
<
td
>
<
asp:TextBox
ID
=
"txtIme"
runat
=
"server"
Text='<%# Bind("Ime") %>'></
asp:TextBox
>
</
td
>
<
td
>
Prezime:
</
td
>
<
td
>
<
asp:TextBox
ID
=
"txtPrezime"
runat
=
"server"
Text='<%# Bind("Prezime") %>'></
asp:TextBox
>
</
td
>
</
tr
>
</
table
>
<
asp:Button
ID
=
"btnSave"
CommandName
=
"Save"
Text
=
"Spremi"
runat
=
"server"
/>
<
asp:Button
ID
=
"btnDelete"
CommandName
=
"Delete"
Text
=
"Delete"
runat
=
"server"
/>
</
FormTemplate
>
</
EditFormSettings
>
</
MasterTableView
>
protected void gvKontakti_EditCommand(object sender, Telerik.Web.UI.GridCommandEventArgs e)
{
int idKontakt = 0;
int value = Convert.ToInt32(e.CommandArgument);
if (e.CommandName == "Spremi")
{
TSEntities db = new TSEntities();
Kontakt kontakt = new Kontakt();
if (idKontakt > 0)
{
kontakt = db.Kontakts.SingleOrDefault(k => k.idKontakt == idKontakt);
TextBox txtIme = (TextBox)gvKontakti.FindControl("txtIme");
TextBox txtPrezime = (TextBox)gvKontakti.FindControl("txtPrezime");
TextBox txtFunkcija = (TextBox)gvKontakti.FindControl("txtFunkcija");
TextBox txtTel1 = (TextBox)gvKontakti.FindControl("txtTel1");
TextBox txtTel2 = (TextBox)gvKontakti.FindControl("txtTel2");
TextBox txtMob1 = (TextBox)gvKontakti.FindControl("txtMob1");
TextBox txtMob2 = (TextBox)gvKontakti.FindControl("txtMob2");
TextBox txtFax = (TextBox)gvKontakti.FindControl("txtFax");
TextBox txtEmail1 = (TextBox)gvKontakti.FindControl("txtEmail1");
TextBox txtEmail2 = (TextBox)gvKontakti.FindControl("txtEmail2");
TextBox txtAdresa1 = (TextBox)gvKontakti.FindControl("txtAdresa1");
TextBox txtAdresa2 = (TextBox)gvKontakti.FindControl("txtAdresa2");
TextBox txtAdresa3 = (TextBox)gvKontakti.FindControl("txtAdresa3");
TextBox txtGrad = (TextBox)gvKontakti.FindControl("txtGrad");
TextBox txtPBR = (TextBox)gvKontakti.FindControl("txtPBR");
TextBox txtDrzava = (TextBox)gvKontakti.FindControl("txtDrzava");
TextBox txtBiljeske = (TextBox)gvKontakti.FindControl("txtBiljeske");
CheckBox chkAktivan = (CheckBox)gvKontakti.FindControl("chkAktivan");
kontakt.Ime = txtIme.Text;
kontakt.Prezime = txtPrezime.Text;
}
else
{
}
db.SaveChanges();
}
}