Is it doable?
i have a radlistboxitem list on which i would like to add label for, so that we will be able to select the checkbox using the label not the checkbox.
So far, i have this code, but it is not working. Your help will be greatly appreciated.
aspx
<
telerik:RadListBox
runat
=
"server"
ID
=
"testRadlist"
AutoPostBack
=
"true"
RenderMode
=
"Lightweight"
CheckBoxes
=
"true"
SelectionMode
=
"Multiple"
Width
=
"215PX"
>
<
ItemTemplate
>
<
asp:Label
runat
=
"server"
Text
=
"Text"
ID
=
"lblRadlist"
AssociatedControlID
=
""
></
asp:Label
>
</
ItemTemplate
>
<
Items
>
</
Items
>
aspx.cs
testRadlist.Items.Clear();
testRadlist.Items.Add(new RadListBoxItem {
Value = "Summary",
// Text = "Summary"
});
testRadlist.Items.Add(new RadListBoxItem
{
Value = "Edit",
//Text = "Edit"
});
for (int i=0; i < testRadlist.Items.Count; i++)
{
testRadlist.Items[i].DataBind();
Label lbl = (Label)testRadlist.Items[i].FindControl("lblRadlist");
string val = lbl.Text;
}
}
Everytime i use, i give it a zip file, fill, select the newer Telerik.Web.UI.dll, and click "Get Assembly" and i get a server error.
I'm trying to remove a child node. This is working fine as long as it is not the top child node under the Parent
Parent
child1
child2
child3
child4
If I remove child2, 3 or 4; it works. But if I remove child1, the Parent is removed along with any remaining child nodes.
The behavior I expected is that I should be able to remove any of the child nodes in any order and the Parent node should be removed only when the last remaining child node is removed - but even that is debatable since what if I wanted to add more child nodes to the Parent node after removing everything?
Here is my code:
Dim
remove_node
As
RadTreeNode = rtvClientSpecs.FindNode(
Function
(x) x.Value = e.CommandArgument.ToString()) remove_node.ParentNode.Nodes.Remove(remove_node)
Hi!
On Razor View i`m trying to bind Grid to ExcludedAffiliations property of EntertainerModel:
public class EntertainerModel : BaseNopEntityModel
{
public int Id { get; set; }
public string Description { get; set; }
...
public GridModel<ExcludedAffiliationModel> ExcludedAffiliations { get; set; }
}
public class ExcludedAffiliationModel : BaseNopEntityModel
{
public int Id { get; set; }
public string Name { get; set; }
public bool Excluded { get; set; }
}
View definition:
@(Html.Telerik().Grid<ExcludedAffiliationModel>(Model.ExcludedAffiliations.Data)
.Name("entertainer-excluded-affiliation-grid")
.Columns(columns =>
{
columns.Bound(x => x.Excluded)
.Width(15)
.Centered()
.Template(x => Html.CheckBox("chbxAffiliationExcluded" + x.Id, x.Excluded, new { @class = "apply-affiliation-excluded", affiliationId = x.Id, entertainerId = Model.Id }))
.ClientTemplate("<# if (Excluded == true) { #> <input value='true' type='checkbox' checked='checked' id='chbxAffiliationExcluded<#= Id #>' affiliationId='<#= Id #>' entertainerId = '<#= Model.Id #>' class='apply-affiliation-excluded' /> <# } else { #> <input type='checkbox' id='chbxAffiliationExcluded<#= Id #>' affiliationId ='<#= Id #>' entertainerId = '<#= Model.Id #>' class='apply-affiliation-excluded' /> <# } #>");
columns.Bound(x => x.Id)
.Width(100)
.Centered()
.ReadOnly();
columns.Bound(x => x.Name)
.Width(250)
.ReadOnly();
}))
Controller action method:
public ActionResult Edit(EntertainerModel model, bool continueEditing)
{
...
}
As a result i see the grid with three columns and can click checkbox in the column "Excluded".
But when i click standard submit button on the page, action method of controller called but the property ExcludedAffiliations of the model is null.
My question is: is it exists a way for binding grid data back to model property ?
Thanks a lot.
Hi there,
I'm trying to add nodes to a specific node in a previously databound radtreeview.
When the page updates, the correct number of nodes are visible in the correct parent node, but they have no text.
Dim current_version_node As RadTreeNode = rtvClientSpecs.FindNode(Function(x) x.FullPath = e.CommandArgument.ToString())
If current_version_node.Nodes.Count = 0 Then
f = oclientContext.Web.GetFileByServerRelativeUrl("/" + e.CommandArgument.ToString())
oclientContext.Load(f.Versions)
oclientContext.ExecuteQuery()
For Each _version As FileVersion In f.Versions
If Not _version.IsCurrentVersion Then
Dim old_version_node As New RadTreeNode(e.CommandArgument.ToString() + "/" + String.Format("Version {0}", _version.VersionLabel))
old_version_node.Value = _version.VersionLabel
current_version_node.Nodes.Add(old_version_node)
End If
Next
Else
current_version_node.Expanded = Not current_version_node.Expanded
End If
After last weeks windows updates, printing the contents of a radwindow causes a 404 error. Our users little to my knowledge print out the window contents for various reasons. This behavior is also true from your demo @ http://demos.telerik.com/aspnet-ajax/window/examples/overview/defaultcs.aspx right click the window and select print, 404 is what get's printed.
Please advise as we are in a critical state with some of our operations because of this. It does not seem to be an issue with IE10.
Hi
Our website is using Telerik RadDatePicker control. As I am waving the page using chrome wave, it appears that telerik generates a table tag along with the thead tag, but with empty th.
Refer to the example below:
<table id="">
<caption style="display:none"> RadDatePiker</caption>
<thead><tr><th scope="col"></th></tr></thead>
<tbody>.....</tbody>
</table>
Issue:
<th scope="col"></th> is empty. It should be <th scope="col">TEST INSIDE</th>
Question:
I tried using jquery to access the th tag and insert the test inside the th tag, but jquery does not seem to access the element.
I would like to either
1- have telerik not generate the thead tag
2- or use jquery
3- javascript to access the th tag in order to insert a text
Kindly advise
I am getting the following error on Internet Explorer. When I hover over the scheduler calendar appointment. We just recently purchased telerik and wanted to see if other people have had the same issue.
0x800a138f - JavaScript runtime error: Unable to get property '_allowDelete' of undefined or null reference
I would like to be able to hide/disable or show/enable a step from the client side based on user response.
Hiding would mean i want to hide the step, have it skip that step in the navigation, and disable validation for that page..
Showing it would unhide it, add it back the step navigation, and re-enable validation.
I have been able to remove the step and hide it, but I can't insert it back if needed.
I could possibly hide the step, disable validation, and then override the next button so that it skips that step. But it would still affect that percentage complete, etc.
Also, I am not doing a asp postback as I am saving the data via an ajax post. So corrupting the viewstate is not an issue.