Telerik Forums
UI for WPF Forum
5 answers
151 views
GridView Not Loading in Word Addin TaskPane

We try to load Gridview in WPF XAML design time,but it is not loading.IF we try to load at runtime  by using c# code it works and added in Task Pane.


May i know how to fix the issue.


Thanks,
Anand
Anand
Top achievements
Rank 1
 answered on 10 Jun 2011
0 answers
82 views
I have Location list in a combobox .Need to call the method get employee by location and need to bind the name and id with the grid column on the combobox selection changed event....
Plz share code
swati
Top achievements
Rank 1
 asked on 10 Jun 2011
1 answer
485 views
Hi Telerik, All

I have GridView with GridViewSelectColumn and if i select couple of rows then apply filters then clear filters my all Selections is gone, means all previously selected rows become unselected.

is there anything i can do to retain same selection if i apply filter then clear filters

e.g
1. I have 5 rows 3 with Country US and 2 with Canada
2. Now i selected Canada rows
3. Apply filter on Country to US
4. only 3 rows visible "US"
5. Now clear filters
6. All 5 rows visible
7. All selected rows become unselected.


I want to keep that Canada rows selected.

I have used RadGriView in Winforms with filters and all my selections remmain selected even after filtering, so why WPF cant keep?


Kind Regards:
Maya
Telerik team
 answered on 10 Jun 2011
8 answers
186 views
Hi,

each items in my caroussel come from numerized 8x11 paper image. I use a caroussel because some document contains more than 1 page. I would like to know if it's possible to have each item display using their real size. If an image height are bigger than the display area, of course I would like to have to possibility to scroll  the image vertically to see their missing part.

Maybe I'm not using the right component, I don't know... What we have to consider is the fact that I need to display document with 1 or more pages (max 3 pages) using their real size to see all the infos on the documents.

Thank's
Maya
Telerik team
 answered on 09 Jun 2011
2 answers
239 views
I have a gridview and one of the columns needs a popup window for selecting the appropriate value because the list of available choices is over 200 records.

I've created a CellEditTemplate with a button bound to a command on my viewmodel, but I'm not sure this is the best approach. Because I have to bind the selectedItem of the grid to a property, so that when I show the popup window, it can alter the appropriate property of the selectedItem.

When I click on the "insert row", the new row isn't automatically the selected row. How do I get to to automatically be the selected row, so that my popup window has something to change? Or is there a better way to present the choices to the user besides a popup window?
Rayne
Top achievements
Rank 1
 answered on 09 Jun 2011
2 answers
104 views
I have gridView defined inside a DataTemplate for a TabControl.

Within this GridView I have a column that I need to provide a list of choices from over 200 records with multiple columns, that needs to be filterable, so I thought either a button that brings up a popup window, or using a combobox with a gridview. Either solution requires me to bind to properties on my viewmodel for the list of 200+ records.

Controls inside the DataTemplate defined for the TabControl are bound to the VM by setting a name on the UserControl and binding to {DataContext.Property, ElementName=MyUserControl}. This works, until I get to the DataTemplate that is defining the CellEditTemplate. I thought I could use the same method for declaring my binding, but it just isn't working.

Is there a heirarchy limit I'm reaching, but having a DataTemplate defined inside of a DataTemplate?
Rayne
Top achievements
Rank 1
 answered on 09 Jun 2011
1 answer
117 views
Hi

in my project,wpf radgrid Filter case sensitive is  working fine.
But the same items with Different Case come as Different CheckBoxes in the Filter Select Option

eg:
ABC and abc comes as different filter select options. but in filtering textbox,if we give the value as abc it returns both abc and ABC
i want to set this as one in filter checkbox group also.
Is this possible
Maya
Telerik team
 answered on 09 Jun 2011
1 answer
141 views
Hi

I'm having a weird issue with the grid view column  if you I'm using Width="*" i get a really long horizontal scroll bar.

Code:
  <ScrollViewer HorizontalScrollBarVisibility="Auto" BorderThickness="0" >
  <telerik:RadGridView Grid.Row="1" ScrollMode="Deferred"     RowIndicatorVisibility="Collapsed"   CanUserFreezeColumns="False"  ShowGroupPanel="False"  AutoGenerateColumns="False"  >
                    <telerik:RadGridView.Columns>
                    <telerik:GridViewDataColumn Header="Name" Width="200"  />
                    <telerik:GridViewDataColumn Header="Phone" Width="*" />
                    </telerik:RadGridView.Columns>
                </telerik:RadGridView>
</ScrollViewer>

Thanks
Dimitrina
Telerik team
 answered on 09 Jun 2011
6 answers
526 views
Hello,

I am looking for themes for each component Telerik.

I want the user to choose its theme.

I can not find the files corresponding to these themes.

Could you help me?

Best regards
Mickael
Top achievements
Rank 1
 answered on 09 Jun 2011
2 answers
338 views

I have two gridviews that are bound to the same QueryableCollectionView. I need the selected items of the two gridviews to be the same at all times.

 

There seem to be some built-in funtionalty like this. If a select a row in GridView1 the same row will be selected in GridView2. But if I select multiple rows in GridView1, only the first selected of those rows will be selected in GridView2.

 

How can I sync the selection between the gridviews?

I used to have the gridviews bound to the same RadObservableCollection. Then I synced the selection manually on the SelectionChanged-event on GridView1 like this:

private void GridView1_SelectionChanged(object sender, SelectionChangeEventArgs e)
{
    GridView2.SelectedItems.Clear();
    foreach (var item in GridView1.SelectedItems)
    {
        GridView2.SelectedItems.Add(item);
    }
}
That worked fine, but I doesn't work now when I've switched to using QueryableCollectionView. When I clear the selected items of GridView2 the selected items of GridView1 will also be cleared. So it seems to be some built-in sync here (I'm guessing the QueryableCollectionView keeps track of selected items), but not like I need it to work

haagel
Top achievements
Rank 1
 answered on 09 Jun 2011
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
VirtualKeyboard
HighlightTextBlock
Security
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?