Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
95 views
Good day!
I have a grid on page, it has width 100% and height 100%
The grid is contained in a div. When I change pagimng size or when I go through pages in pagin height of the grid changes but the div's height does not =(   And it looks bad. How can I make div change size on grid changing size? What RadGrids client events should I use for it?
lina fetisova
Top achievements
Rank 1
 answered on 21 Oct 2010
4 answers
124 views
Hello,

I need to have a grid in popup.

How do I create,bind, iterate items in the grid in popup?

Thank you

Regards
Raj
Rajz
Top achievements
Rank 1
 answered on 21 Oct 2010
1 answer
49 views
Hi,

I am using a RadDatePicker in a setup that is similar to the ActiveSkill example (i.e. a RadSplitter with two RadPanes), the right most
RadPane is the destination pane for my custom control that is loaded by Page.LoadControl and added by Page.Controls.Add().

Now I noticed that if I create a custom control with only a RadDatePicker in it, the calender popup button does not do anything,
if I move the control to the page with the RadPanes and the RadSplitter (i.e. out of the custom control) it works fine.

What am I missing?

Thanks,
-Carlo
Carlo
Top achievements
Rank 1
 answered on 21 Oct 2010
3 answers
86 views

Hi,

my requirement is to export all my grid on my page to word file.
i have 3 grid on my page and on export button click i want to export the data of all grid into word file.

please help.
Daniel
Telerik team
 answered on 20 Oct 2010
4 answers
216 views

Hi,

Is there a way to open a radgrid popup add form on page load? 

I want to reproduce the same action as when the user click "Add a new record" in the grid.

Thank you.

Aaron
Top achievements
Rank 2
 answered on 20 Oct 2010
1 answer
195 views
hi all,

i have a requirement to convert the html (that was created and save via the rad editor) to an other column in the db, is there a way of achieving this, can i use the rad editor as an object model to achieve this ?. or can you suggest some alternatives??

Thanks
-Nen

Rumen
Telerik team
 answered on 20 Oct 2010
5 answers
147 views
Hello,

I am trying to use RadCompression on my silverlight project as follows : 

<httpModules>
   <add name="RadCompression" type="Telerik.Web.UI.RadCompression" />
<.....

<system.webServer>
 <add name="RadCompression"  type="Telerik.Web.UI.RadCompression" />
<.....

When i run my project, it works fine with firefox ( compression works well). But it doesn't work using IE or Chrome!!

Any ideas please

Regards,

Jalal Khalil
Top achievements
Rank 1
 answered on 20 Oct 2010
1 answer
74 views
Hi all,

I am executing the follwing code in an effort to turn off the insert record display on the grid when someone is to have read only privileges. This code is taken from page_load

protected

 

void Page_Load(object sender, EventArgs e)

 

 

 

{

 

                //disable status bar if read only
            string tCheck = System.Web.HttpContext.Current.Session["Agencies"].ToString();
            if (tCheck.ToString() == "R" )
            {
                RadGrid1.ShowStatusBar = false;
            }
}

After executing the status bar is still displaying. Is there a followup command or do I need to execute this command somewhere else?

Thanks,

David
David
Top achievements
Rank 1
 answered on 20 Oct 2010
2 answers
166 views
I am having some difficulties formatting a listview.  I have attached screen shots and included source code.

The source code for the .aspx page is immediately below.

<div >
<telerik:RadListView ID="RadListView1" runat="server" Width="100%" EnableEmbeddedSkins="true" Height="150px" Visible="true" Enabled="true" ItemPlaceholderID="ListViewContainer">
        <LayoutTemplate>
            <asp:PlaceHolder runat="server" id="ListViewContainer" />
        </LayoutTemplate>
        <ItemTemplate>
            <fieldset style="float: left; width: 300px; height: 150px; color: black; ">
                <div >
                    <div>
                        <ul>
                            <li>
                                <%# Eval("ListingHeadline")%>
                            </li>
                            <li>
                                <label>Beds:</label><%# Eval("BedroomsDisplay")%>
                            </li>
                            <li>
                                <label>Baths:</label><%# Eval("BathroomsDisplay")%>
                            </li>
                            <li>
                                <label>Address:</label><%# Eval("ListingStreetAddress")%>
                            </li>
                        </ul>
                    </div>
                </div>
            </fieldset>
        </ItemTemplate>
</telerik:RadListView>
</div>

In the web.config file, I also have the following code:

configuration>
    <appSettings>
        <add key="Telerik.Skin" value="Hay"/>
        <add key="Telerik.ScriptManager.TelerikCdn" value="Disabled"/>
        <add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled"/>
    </appSettings>

As you look through this, please ignore the ugly combinations.  I am simply using settings that I can immediately recognize, so yes, the page is ugly right now.  I'll worry about the look/feel after I get the general formatting correct.

As I said, I have two (2) issues with the ListView.  The first is that I can't seem to apply Telerik skins.  The second is that I can't seem to control the color of the "line" around each item presented in my ListView.  Please refer to the attached file ListView_Format_1.gif for a capture of the screen.  As you can see above in the config.web file, I have a setting for the "Hay" skin for the site.  This skin is applied to all of the other controls on the screen, but not to the listview.  Why doesn't this work for the listview as well?

Also, as you can see in the listview_format_1.gif screen capture, there is a line around each item in the listview.  This line is a kind of silver blue (#617683).  Where is this color coming from? I cannot seem to get rid of it or change it to another color no matter what I do.  In the attached file named listview_format_2.gif, you can see the screen capture of the "developer toolbar" output from the page that is in listview_format_1.gif.  This color (#617683) is eliminated in the style information for the page, so I cannot find anything to change or remove to either remove or change the color of this "border line",  How do I do this (either remove the line or change its color)?

Lastly, I have read the documentation and seen the example where it says to include a "div" in the source code for the listview to set the skin there.  So I inserted the code as shown below.

<telerik:RadListView ID="RadListView1" runat="server" Width="100%" EnableEmbeddedSkins="true" Height="150px" Visible="true" Enabled="true" ItemPlaceholderID="ListViewContainer">
        <LayoutTemplate>
            <asp:PlaceHolder runat="server" id="ListViewContainer" />
              
             <div class="RadListView RadListView_Black">
             </div>
        </LayoutTemplate>
        <ItemTemplate>
            <fieldset style="float: left; width: 300px; height: 150px; color: black; ">

This code shown above where the "black" skin is specified, had no effect whatsoever on the output of the listview.  The screen still looked exactly the same as that shown in the attached screen capture listview_format_1.gif.

How do I alter the appearrance of the listview per my questions above?

Thanks very much in advance!

Lynn
Lynn
Top achievements
Rank 2
 answered on 20 Oct 2010
1 answer
68 views
Hello, I'm trying to figure out for to implement client side binding in a Sharepoint webpart using the RadGrid component.  Are there any examples that you could suggest that may help get me started?
Tsvetoslav
Telerik team
 answered on 20 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?