Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
137 views
Hello,
I have selected value = "" on page load i first time page is loaded.
I've read that it is when

 

EnableLoadOnDemand="true"

 


but I've set this parameter to false
Regards.
Leszek
Leszek
Top achievements
Rank 1
 answered on 30 Sep 2010
5 answers
71 views
I have successfully deployed Rad Tab Strips before, but I have one that is now causing me some grief. No matter what settings I try, when I build my project the tabs only show up as Text. They do work (each tab is linked to a multi page view) but there is no "design" to them.

Has anyone seen this before? Any ideas on how to fix it?
Royal
Top achievements
Rank 1
 answered on 30 Sep 2010
3 answers
149 views
This is a 2 part question, but they should be pretty quick to answer:
1) I have a column in the grid that I have hidden and I don't want that column to show up in the autogenerated edit form.  I guess I need to catch some event to get that removed.
2) If I don't have this column visible, I still need to set the columns data so that I can do an insert ( the column is a foreign key ).  So I am just hardcoding the foreign key here.  How would I go about doing that so that the insert will work?
Thanks.

Cori
Top achievements
Rank 2
 answered on 30 Sep 2010
2 answers
237 views
I am modifying some css that will be part of a document.  Inside the document I want an icon to be displayed and when the icon is clicked some css balloon hover text is displayed.  The problem is when I switch over from HTML view to Display view the span tag is displayed even though it should not be visible (see attached picture).

Thanks.

Code:

<STYLE type=text/css>
/*
 * Public Notes
 */
/*
 * Public Notes
 */
.PublicNotes{
   font-size: medium;
   color: #00FF00;
   font-weight: bold;
}
/*
 * Personal Notes
 */
/*------From Settings Configuration Page-------*/
/*---------- bubble tooltip -----------*/
a.tt{
    position:relative;
    z-index:24;
    color:#3CA3FF;
    font-weight:bold;
    text-decoration:none;
    background:url(images/Y-Note-icon16x16.png) top left no-repeat;
  clear:both;   
}
a.tt span{
       display: none;
 
}
 
/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:25; color: #aaaaff; background:;}
a.tt:hover span.tooltip{
    display:block;
    position:absolute;
    top:0px; left:0;
    padding: 15px 0 0 0;
    width:200px;
    color: #993300;
    text-align: center;
    filter: alpha(opacity:90);
    KHTMLOpacity: 0.90;
    MozOpacity: 0.90;
    opacity: 0.90;
}
a.tt:hover span.top{
    display: block;
    padding: 30px 8px 0;
    background: url(images/bubble.gif) no-repeat top;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
    display: block;
    padding: 0 8px;
    background: url(images/bubble_filler.gif) repeat bottom;
}
a.tt:hover span.bottom{
    display: block;
    padding:3px 8px 10px;
    color: #548912;
    background: url(images/bubble.gif) no-repeat bottom;
}
.privateNoteMark{
    position:relative;
    height:16px; /*dimensions of our image*/
    width:16px;
    background:url(images/Y-Note-icon16x16.png) top left no-repeat;
}
 
/*----End From Setting Configuration Page------*/
/*
 * Personal Dorment Notes
 */
/*
 * Personal Dorment Notes
 */
.PersonalNotesDorment{
   letter-spacing: -900pt;
    visibility:  hidden;
}
</STYLE>
 <A class=tt href="#"><IMG src="images/folder.gif">
   <SPAN class=tooltip>
      <SPAN class=top></SPAN>
      <SPAN class=middle> This is my Bubble Tooltip with CSS </SPAN>  <!--- THIS TEXT SHOULD NOT BE DISPLAYED!
      <SPAN class=bottom></SPAN>
  </SPAN>
</A>
John
Top achievements
Rank 1
 answered on 30 Sep 2010
2 answers
149 views

I want to bind a RadGrid to a web service without using Linq. In all examples I can find, the web service has to return a List(Of MyObject); I've tried this, and it works great. However, the table I'm binding to may at runtime have additional columns, or columns may have different data type, so I can't use a static MyObject class to represent the table at compile time. I also don't know at compile time which columns need to be displayed in the grid. I would like to bind to a web service for performance reasons.

I've tried having the web service method return a DataView, and cast it a lot of different ways, but it's not working. How would I write the GetData / GetDataAndCount method of the web service to return the data from a DataView or other non-linq data source?

Thanks.

Alfred
Top achievements
Rank 1
 answered on 30 Sep 2010
11 answers
228 views
The ASP.NET MVC validation framework are weak.  Are you plan to providing a Validation framework for ASP.NET MVC?
Serge
Telerik team
 answered on 30 Sep 2010
2 answers
109 views
Dear Sirs!
1. I have RadCalendar. It has the Footer template having the regular asp Label.
2. I need to find this control - label from client-side api, for example, inside client event OnDateSelected
3. The problem is that findControl method (as in RadGrid) here not works.

Thank you very much in advance.

Boris
Boris
Top achievements
Rank 1
 answered on 30 Sep 2010
2 answers
96 views
I am using a radgrid where in the ClientSettings, I have AllowScroll="true" and UseStaticHeaders="true".  This grid is in a user control sitting on a webform that is loaded into a MasterPage content area.  What's happening is that the grid is sizing correctly on the page but the masterpage width and height are getting expanded based on the number of columns and rows we add to the grid.  In other words, it's as if the page is trying to account for the space occupied by the grid even though we set the scroll to true.  A thing to note about this is that I want the grid to horizontally scroll, so we deliberately are settings the pixels on each of the columns in the grid to exceed the width of the grid to invoke the horizontal scroll.  And after doing a little more testing, as soon as UseStaticHeaders is set to true, the effect described above occurs.  Have the headers locked in for vertical scrolling is essential, so we would like to keep the UseStaticHeaders set to true.  Any help would be greatly appreciated.  Thanks.
Mark Perry
Top achievements
Rank 1
 answered on 30 Sep 2010
2 answers
134 views
Hello,

I have a scheduler which is loaded into a RadPageView on page_load. When I try to add or edit an appointment, my modal form appears as it should, but it is not accessible. The page acts as if the form does not exist, allowing me to access controls behind the overlay (see attached screenshot). I have tried setting different z-index for different elements, but am still getting the same result (screenshot is with no z-index applied anywhere).

Note: This only happens in IE7. I have tested in Firefox and Chrome and it worked in both cases.
Using Q2 2010.

Thank you.
Josh
Top achievements
Rank 1
 answered on 30 Sep 2010
4 answers
503 views
Hi there,

is there a way to make the DatePicker show its calendar always?

I tried to show the calendar on document load by using "DatePicker.showPopup()" and keep it visible by using:

<script type="text/javascript">
    function OnPopupClosing(sender, args)
    {
        eventArgs.set_cancel(true);
    }
</script>

But theOnPopupClosing-Event is only fired if the Popup closes after a date was selected.
If the users just clicks outside the control, the Popup closes without firing the event.

So is there a simple way to get a DatePicker show its calendar permanently or some workaround?

I also tried using a DatePicker and a additional Calendar and sync the input between the controls, but this is quit uncomfortable an error-prone

Any help is appreciated

btw
There was a post about this topic a few months ago, but there was no helpful answer to this:
http://www.telerik.com/community/forums/aspnet-ajax/calendar/raddatepicker-can-raddatepicker-show-the-calendar-always.aspx

Lukas
Lukas
Top achievements
Rank 2
 answered on 30 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?