Infragistics XamDataGrid Expand Direction - infragistics

is it possible to change the expand direction of the childrecords in an infragistics xamdatagrid? Currently the expand direction is down (childrecords expand down of the parentrecord). I need the change to expand the childrecords top of the parentrecord.
orignial expand direction with childrecords
new expand direction
maybe with a style?
I use WPF and vb.net
Thank you.

It sounds like you might be looking for the ChildRecordsDisplayOrder property.

Related

How to show checkbox in the top left corner of its multiline text C++

Is there a way to do this? Also, the lower text is truncated when I set it as multiline. Is there a way to increase the size of rect for the checkbox so that the multiline string fits in it.
Thank you very much.
Top is possible.
Left is doubtful. you can try it.
In the below link look for "Text Alignment Styles"
https://msdn.microsoft.com/en-us/library/tf9hd91s.aspx
For setting the style use,
CButton::SetButtonStyle(UINT nStyle,BOOL bRedraw = TRUE)
Look for documentation here in below link
https://msdn.microsoft.com/en-us/library/yf1wax6c.aspx#cbutton__setbuttonstyle
for multiline fit probably you have to set the style to button using "setButtonStyle" with an option "BS_MULTILINE".
Use a CheckBox together with a Static. My experience tells me that this workaround is good for many reasons. (E.g. you can easily make the checkbox look transparent, which would otherwise be excruciatingly hard.)

Add a slideshow to Tictail

I basically just want to add a slideshow to a current shop. I've never used Tictail before and it was great and very easy to set up (I set it up just so I could learn how it works).
But I can't get my head around this because I can't even get to this menu:
http://help.tictail.com/customer/portal/articles/1206116-change-your-store-s-landing-page
Anyone who can help me into right direction?
This is how it looks like when I enter the settings-screen:
you have to open your dashboard in the top right side then click the arrows if you need HTML otherwise you can change the templates.
good luck

CTreeCtrl - only use checkboxes for certain rows/children

I have a CTreeCtrl and I filled it with content. Now I wanted to add checkboxes but JUST for certain ones. I've found the possibilty to activate checkboxes on the TreeCtrl with m_Tree.ModifyStyle(0, TVS_CHECKBOXES), but this adds a checkbox on each node/child on the whole Ctrl. Is it possible to turn this feature on, but just for certain ones?
All I found is the possibility to add three different pictures, catch the clickevent on a node and change the image. Is there an easier way? Let me know.
Thanks a lot,
jntme
I don't think that CTreeCtrl provide any method to add check boxes at specified node only.
Easiest way to do this is explain in following link.
http://www.tech-archive.net/Archive/VC/microsoft.public.vc.mfc/2005-10/msg00454.html.
please go through and let me know if you are facing problem.
You may be able to accomplish what you want with a custom draw tree control. But, you'll need to render the image states yourself. That could get messy because you'll need to account for all of the possible different states.

Integrating IASKAppSettingsViewController with UITabBarController

I am not able to integrate IASKAppSettingsViewController into my tab bar.
Can someone please help me with it?
For this to happen storyboard should look like:
[UITabBarController]-->[UINavController]-->RootControllerSegue-->[UITableViewController]
set class for [UITableViewController] as "IASKAppSettingsViewController"
set [UITableView] style as "Grouped"

Customizing CMFCRibbonBar im MFC

I am trying to customize the default MFC RibbonBar. I need to reduce its height, change its color etc, but so far i haven't found anything on how to do so. I've been to msdn, and they just tell you how to add new controls on the ribbon.Can any one please point me in the right direction? Is this ribbon control even customize-able? i mean apart from adding categories and other controls on it, i want to change the look of the ribbon.
Some code samples about how to work with MFCRibbonControl would be of great help too.