When inserting a table on top of a page, the table tools are over the toolbar, refer to screenshot.
That disturbs Eg. when a dropdown is positioned there.
Marc
I need to hide list view items depend on the values in item.
<telerik:RadListView ID="lvCustomers" Width="97%" runat="server" ItemPlaceholderID="ProductsHolder"
allowsorting="true" DataKeyNames="Guid">
<LayoutTemplate>
<fieldset style="max-width: 1100px" id="FieldSet1">
<asp:Panel ID="ProductsHolder" runat="server">
</asp:Panel>
<telerik:RadDataPager RenderMode="Lightweight" ID="dpCustomers" runat="server">
<Fields>
<telerik:RadDataPagerTemplatePageField>
<PagerTemplate>
<asp:Label ID="lblTotalRecordCount" runat="server" Text="<%# TotalCustomerText %>"></asp:Label>
<asp:Label ID="labTotalCustomerCountValue" runat="server" Text="<%# TotalCustomerValue %>"></asp:Label>
</PagerTemplate>
</telerik:RadDataPagerTemplatePageField>
</Fields>
</telerik:RadDataPager>
</fieldset>
</LayoutTemplate>
<ItemTemplate>
<div class="hubCustomer" id="divCustomer" runat="server">
<asp:HiddenField Id="hfIsMyCustomer" runat="server" />
<div class="row">
<div class="col-md-5 nopadding hubCustomerCode">
<asp:Label ID="lblCustomerCode" runat="server"></asp:Label>
</div>
<div class="col-md-4 nopadding text-right">Budget</div>
<div class="col-md-3 nopadding text-left">
<div class="circleSuccess" id="divBudgetPerformance" runat="server"></div>
</div>
</div>
<div class="row">
<div class="col-md-12 nopadding">
<asp:Label ID="lblCustomerName" runat="server"></asp:Label>
</div>
</div>
<div class="row">
<div class="col-md-12 CustomerListProgress">
<uc1:ProgressBar ID="pbCustomerProgress" runat="server" Editable="false" />
</div>
</div>
</div>
</ItemTemplate>
</telerik:RadListView>
function HideCustomers() {
debugger;
var list = $find('<%= lvCustomers.ClientID %>'); // the List view customer
data hold
var items = list.get_items(); // this method not working
for (var i = 0; i < items.get_count() ; i++) { //loop through item
//need to do
Get value of hfIsMyCustomer
If value is false , hide entire item
}
};

Hi Telerik Team
im using telerik version Q1 2016 i have a problem
when i add RadSkinManager and RadFormDecorator to my masterpage everything is ok until i make any event like click a button all page control hid ?????
i attached two pic

The push button is not visible for Reject. Instead it is showing as plain text. Below is the code I have used for it.
<telerik:RadGrid ID="grvUpdate" runat="server" GridLines="Horizontal"CellPadding="0" BorderWidth="0px" EnableEmbeddedSkins="False"Width="382px" CellSpacing="0"><MasterTableViewAllowPaging="true"PageSize="15"EditMode="PopUp"CommandItemDisplay="Top"AllowFilteringByColumn="false" DataSourceID="SqlDataSource1" AutoGenerateColumns="False" DataKeyNames="Id"><Columns><telerik:GridBoundColumn DataField="Id" DataType="System.Int64" FilterControlAltText="Filter Id column" HeaderText="Id" ReadOnly="True" SortExpression="Id" UniqueName="Id"></telerik:GridBoundColumn><telerik:GridBoundColumn DataField="Name" HeaderText="Name" SortExpression="Name" UniqueName="Name"></telerik:GridBoundColumn><telerik:GridBoundColumn DataField="Amount" HeaderText="Amount" SortExpression="Amount" UniqueName="Amount"></telerik:GridBoundColumn><telerik:GridButtonColumn ButtonType="PushButton" HeaderText="Reject" Text="Reject" UniqueName="Reject" CommandName="Reject"></telerik:GridButtonColumn></Columns></MasterTableView></telerik:RadGrid>
Could you please let me know what changes need to be done for the above code to make push button visible properly.

I want to create a radwindow dialog which have a button for close the window and also after 5 sec the window close automatically.
Thanks in advance.
I have tied the items text to list box using server side programming. I want to bind the ImageURL for the list items in the Radlistbox also programmatic ally but I dont see the ImageURL property in the list of listbox properties or the properties of the item.
I know there is a we have a HTML property something like this ImageUrl ="../App_Themes/Default/Images/
I am not using the listboxitems tag here and so can not use ImageUrl ="../App_Themes/Default/Images/. Is there any way i can use the server side programming to bing the image to the text items?
<tlr:RadListBox RenderMode="Lightweight" runat="server" ID="RadListBoxSource" Height="165px" Width="100px"
AllowTransfer="true" TransferToID="RadListBox1"
ButtonSettings-AreaWidth="30px" >
</tlr:RadListBox>
<tlr:RadListBox RenderMode="Lightweight" runat="server" ID="RadListBox1" Height="165px" Width="100px"
ButtonSettings-AreaWidth="35px" AllowReorder="true" >
</tlr:RadListBox>


Hello,
I need to style a Grid Header Name. I have a Header Name as " Amount tax included". I need to apply styles only for string "tax included" .
Could you please let me know the possible ways to achieve this.?
I have attached the image.
Thanks in advance!!

When using stand-alone ImageManager I keep getting the message:
Telerik.Web.UI.RadUpload with ID='upload1' was unable to find an embedded skin with the name 'Material'. Please, make sure that the skin name is spelled correctly and that you have added a reference to the Telerik.Web.UI.Skins.dll assembly in your project. If you want to use a custom skin, set EnableEmbeddedSkins=false.
I am using Material skin, but obviously the obsolete RadUpload is stille used there?
I use LightWeight rendering but still get the message:
imageManager.Parameters("RenderMode") = Telerik.Web.UI.RenderMode.Lightweight

We're using a custom appointment form as an AdvancedEditTemplate and AdvancedInsertTemplate
Our users want to be able to move the form around so they can see the agenda underneath.
Is there a way to achieve this?
We're on Telerik version 2016 Q2.