Markup Validation ServiceCheck the markup (HTML, XHTML) of Web documents
Please identify your software properly by providing the HTTP User-Agent string. Default from an underlying library (eg Java, Ruby, Coda, libwww) is not sufficiently unique in identifying your software. A good practice is to include a URI to more information about your service or software.

Checklist One|+- What is your age? | +- Age : Under 40 | | | +- Do you like cake? (Available answers : Yes, no) (Score: 3) | | | +- Do you like pie? (Available answers : Yes, no) (Score: 3) | | | +- Do you like cake more than pie? (Available answers : Yes, no, equally) (Score: 2) | +- Age : At or Over 40 | +- Do you like cake? (Available answers : Yes, no) (Score: 3) | +- Do you like pie? (Available answers : Yes, no) (Score: 3) | +- Do you like cake more than pie? (Available answers : Yes, no, equally) (Score: 2) | +- Do you diet often? | +- Answer : More or less, yes. | | | +- Does your love of cake and/or pie interfere with your dieting? (Available answers : Yes, no) (Score: 1) | | | +- Do you wish you loved cake and/or pie less? | | | +- Answer : It would help, yes. | | | | | +- Would you rather love cake or pie less? (Available answers : Cake, pie, both) (Score: 1) | | | +- Answer : No. Dieting is the price I pay to enjoy cake and/or pie. | | | +- Answer : Heck, no! You're crazy for even thinking that. | | | +- Are you offended at the thought of loving cake or pie less? (Available answers : Yes, no) (Score: 1) | | | +- Would you like some cake and/or pie right now? (Available answers : Yes, no) (Score: 1) | +- Answer : No, dieting is not something I need or want to do.
Checklist Two
|
+- Do you like coffee? (Available answers : Yes, no) (Score: 3)
|
+- Do you like tea? (Available answers : Yes, no) (Score: 3)
<telerik:RadListView ID="RadListView1" runat="server" AllowPaging="True" DataKeyNames="idutente" ItemPlaceholderID="Contenitore" PageSize="8" Width="700px" OnNeedDataSource="RadListView1_NeedDataSource"> <LayoutTemplate> <fieldset style="width: 700px; border:0px; background-color: #FFFFFF; background-image: none;" id="FieldSet1"> <div id="Contenitore" runat="server"> </div> </fieldset> </LayoutTemplate> <ItemTemplate> <div class="item-sponsor"> <asp:Image ID="Image1" runat="server" ImageUrl='<%# CType(Container.DataItem, PropertyUtente).imageprofile%>' CssClass="img"/> <span class="name"> <%# CType(Container.DataItem, PropertyUtente).utente%> </span> <span class="title"> <%# CType(Container.DataItem, PropertyUtente).Desccategoria%></span> </div> </ItemTemplate></telerik:RadListViewthis.ProvinciaRadComboBox.DataSource = DiccionarioDatos.provincias; // Provincia[]this.ProvinciaRadComboBox.DataTextField= "nombre";this.ProvinciaRadComboBox.DataBind(); //<---the error is raised hereHi all
I have a problem with an Telerik Grid.
Until I can editing direct in the Grid (with AJAX), i have the following problem:
If i’ll editing all data from a line, i go to a editing window with this command:
columns.Command(commands => { commands.Custom("editDetail") .ButtonType(type) .HtmlAttributes(new { @class = "editDetail" }) .Text("edit") .DataRouteValues(route => route.Add(o => o.GeschaeftID).RouteKey("GeschaeftID")) .Ajax(false) .Action("Edit", "Geschaeft"); }).Width(38).Title("");When i finished with the editing, i get back to the site with the Grid.
And now i‘ve lost all filters and sortings.
If i don’t need the AJAX for edting direct in the Grid i don’t loosing the filter and sortings.
I guess the problem ist by the AJAX.
Do you have an idea, what to do that i don't lose the filters and sortings when i using AJAX?
This is my Code:
@(Html.Telerik().Grid<Model>() .Name("Grid") .DataKeys(keys => keys.Add(c => c.GeschaeftID)) .ToolBar(commands => { commands.SubmitChanges(); }) .DataBinding(dataBinding => dataBinding.Ajax() .Select("_Index", "Geschaeft") .Update("_SaveBatchEditing", "Geschaeft") ) .Columns(columns => { columns.Command(commands => { commands.Custom("editDetail") .ButtonType(type) .HtmlAttributes(new { @class = "editDetail" }) .Text("edit") .DataRouteValues(route => route.Add(o => o.GeschaeftID).RouteKey("GeschaeftID")) .Ajax(false) .Action("Edit", "Geschaeft"); }).Width(38).Title(""); columns.Bound(o => o.xy) .ClientTemplate("<#=xy? 'ja' : 'nein' #>") .Title("A") .HeaderHtmlAttributes(new { title = "xy" }) .Width(12); columns.Bound(o => o.xz) .Width(84) .Title("xz") .ReadOnly() .ClientTemplate("<#=xz#>"); columns.Bound(o => o.xf) .Title("xf") .Width(250) .ReadOnly(); }) .DetailView(details => details.ClientTemplate( Html.Telerik().Grid<Model>() .Name("V") .Columns(columns => { columns.Bound(o => o.vx) .Width(90) .Title("vx") .ReadOnly(); columns.Bound(o => o.vz) .Title("vz") .ReadOnly(); }) .DataBinding(dataBinding => dataBinding.Ajax() .Select("_DetailViewAjax", "Geschaeft", new { geschaeftID = "<#= GeschaeftID #>" })) .ToHtmlString() )) .ClientEvents(events => events .OnDataBinding("Grid_onDataBinding") .OnError("Grid_onError")) .Editable(editing => editing.Mode(GridEditMode.InCell)) .Scrollable(scrolling => scrolling.Enabled(false).Height("auto")) .TableHtmlAttributes(new { style = "table-layout = fixed" }) .Resizable(resizing => resizing.Columns(true)) .Sortable() .Filterable() .Groupable() .Pageable(paging => paging .PageSize(ViewBag.PageSize) .Style(GridPagerStyles.Status) .Position(GridPagerPosition.Bottom) ) )I want my GridCheckBoxColumn on insert is visible=false
But in EditMode i want the GridCheckBoxColumn visible=true
How do i that?