2 issues with the browse-dialog


Author
Message
Trent Taylor
Trent Taylor
StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
This is most likely not going to hapen within this release, Philipp as it doesn't fall in line with the current design.  This is why we added the ReturnSeelctedRowOnly property to accomodate such needs.  Greg's commentary is good, but in any case, I hope this at least gives you an answer so you can move forward.  It was a good idea, but at the moment it is most likley not going to make it into the build.  We will keep it on the table for a later date.
Philipp Guntermann
Philipp Guntermann
StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)StrataFrame User (227 reputation)
Group: Forum Members
Posts: 141, Visits: 263
Ok. Thanks.

Have you had a look on the missing localization ?

Trent Taylor
Trent Taylor
StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)StrataFrame Developer (9.8K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Not yet.
hector
hector
StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)StrataFrame User (144 reputation)
Group: StrataFrame Users
Posts: 52, Visits: 559
Hi Trent,

I am having the same difficulty for localizing the waitwindow.

The last message seems to be on 2009,

Could you please tell me if this is fixed with the new update and how can I localize it?
Ivan George Borges
Ivan George Borges
Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)Strategic Support Team Member (3.4K reputation)
Group: StrataFrame MVPs
Posts: 1.9K, Visits: 21K
Hi Hector.

This hasn't made into the framework yet, but it certainly will.

For the time being, if you would like it to be localized, you could make a small change in the framework, as I have done.

First I created localization keys into my Message & Localization Project.  Then I added code into the BrowseDialogWindow's SetFormTextValues method, as follows:

        ''' <summary>
        ''' Sets all of the forms text values (allows for localized values to be used)
        ''' </summary>
        Private Sub SetFormTextValues()
            '-- Establish Locals
            Dim loCVT As New KeysConverter

            With _BrowseDialog
                Me.lblStatus.Text = String.Format(.EnterSearchCriteraStatusText, "[" & loCVT.ConvertToString(.SearchKey) & "]")
                Me.tsiSearch.Text = .SearchText
                Me.tsiClear.Text = .ClearText
                Me.cmdHideResults.Text = .HideResultsText
                Me.cmdSearchFields.Text = .SearchFieldsText
                Me.tscSearchFields.grpContent.Title = .SearchCriteriaText
                Me.chkAdvanced.Text = .AdvancedOptionsText
                Me.cmdOK.Text = .OKText
                Me.cmdCancel.Text = .CancelText
            End With

            '-- IGB - added on 2011/04/08 - START
            '-- localize missing text key
            Try
                MyWaitwindow.Title = MicroFour.StrataFrame.UI.Localization.RetrieveTextValue("PFNT_MSG - BrowseDialogSearchingTitle")
                MyWaitwindow.Message = MicroFour.StrataFrame.UI.Localization.RetrieveTextValue("PFNT_MSG - BrowseDialogSearchingMessage")
            Catch ex As Exception
            End Try
            '-- IGB - added on 2011/04/08 - END
        End Sub


Hope it helps. Wink
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search