In Symfony2 OROCRM datagrid bulk check box update - symfony-2.8

I am not able to use Symfony2 OROCRM data grid view checkbox for multiple update on single click of a button out side the data grid. And can we set popup on selection of data grid rows in Symfony2 OROCRM ?

Is your screen resolution less then 1920x1080?
You can use horizontal scroll, or just hide some columns and pin this grid.

Related

What scrolling / list control is used on Windows 10 store?

I'm playing around with Windows Universal App development. When looking at the Windows 10 Store App, I noticed a scrolling list control as shown in the below screenshot. Clicking the right arrow will shift right by a certain number of elements. Likewise on the other side, clicking the left arrow will shift back.
Is the scrolling control in the Store App a standard control or something custom made?
I'm aware of things like the ScrollViewer, but that just adds a scroll bar.
I created this by the following:
Grid with 3 columns with widths 3*, 94*, 3*
First column contains Button stretched vertically and horizontally to fill the grid and a ListView
Second column contains nothing
Third column contains Button stretched vertically and horizontally to fill the grid and a ListView
Button clicks fire events to calculate how many places to scroll left or right and then uses ListView.ScrollIntoView to scroll the items into view

How to make the vertical scrollbar of a gridview scroll to the bottom on first display after sorting a column in accending order

Am working on a chat application and am using a gridview to display the chat messages I want the scrollbar to be scrolled automatically to the bottom so as to show new messages. I just want the gridview to show the last row after sorting have taken place
Try using Control.Focus() or Control.Select() on of the items in the last row of your GridView. If this doesn't solve your issue, please show more of your code.

Adding A View To An Existing View Programatically

How can you add or replace a view within a view with code? I'm programming for OSX, not IOS.
I am using a drawer that utilizes a custom view. In the custom view I have two boxes, one with a custom set of icons that I want to stay static and another box that has the information related to that button. What I want to do is when a user clicks one of the buttons that the 2nd box view changes to reflect the info for that button.
For example, I have five buttons and the default 2nd box is "Info", if the user clicks the 2nd button in the first box view I want to change the 2nd box to be the "List" box instead while the 1st box with the buttons stays intact.
I'm not sure how this would impact constraints since while the first box is a fixed size, the 2nd box needs to be dynamic so that it fills in the "rest of the space" so that when the drawer size changes with the window size that the 2nd box is taking up the remaining real estate.
Thank you!
I have implemented such a scenario in the past using a tabless NSTabView, and an NSSegmentedControl (for the buttons). The NSTabView has it's -takeSelectedTabViewItemFromSender: action connected to the NSSegmentedControl, using Interface Builder.
In the Connections Inspector, this shows up like so:
This has the effect that the index of the selected NSTabViewItem in your NSTabView will correspond to the index of the selected segment in the NSSegmentedControl.

Dgrid change page show busy or standby indicator

I have dgrid with paging, 50 rows per page, and using a memory store
The last 2 columns are editable select and filtering select, so when I change page it takes some time.
The problem is that there is not indication to the user that something is happening.
No loading message or a spinning image.
So I want to know if there is an event that fires up before the change of page, so I can manually show a spinner.
So far I have not been able to find such an event.
I used firebug to listen to all click that fires up when I click on the grid, and clicked on the next button to see what will happen.
The only event that fired up was after the rendering of the page. Before the rendering I got nothing.
So how can I show a busy indicator to user when I change page on the dgrid?
A div with the class dgrid-loading is added to the content area of the grid when Pagination loads a new page, and that div spans the full width and height of the content area. You can add styles to this class to add a loading indicator.
You can also add a loading message via the grid's loadingMessage property.
There's an explanation and demonstration of the loading node in the Grids and Stores tutorial in the Customizing Messages section.

How to display data in gridview like excelsheet in iPad application

I want to display data in gridview like excel sheets in iPad application.I tried it using Uitableview with custom cells but there are many restrictions like cannot scroll by touching table etc.I want to display data in UItableView having more than 25 columns and more than 70 rows.I tried using custom UItableviewcell but want to overcome following limitations:
1)How to enable horizontal scroll by touching the table itself by using scrollview.
2)How to make gridview appear like excelsheets.
3)How to display custom header in this case.
Are there any other ways for displaying this GridView.